home *** CD-ROM | disk | FTP | other *** search
/ Super Shareware Collection / Super Shareware Collection.iso / os_2 / clisp.zip / EMX-FAQ.DOC < prev    next >
Text File  |  1994-02-05  |  2KB  |  35 lines

  1.        Frequently asked questions about the DOS version of CLISP
  2.        ---------------------------------------------------------
  3.  
  4. Q1: Can someone tell me what the following error message means
  5.     "Virtual mode not supported without VCPI"
  6.  
  7. A1: (Eberhard Mattes, see EMX-USER.DOC)
  8.     A VCPI server is required to run emx if the CPU is in virtual mode.
  9.     You'll get this message if you're using an EMS driver (EMS emulator)
  10.     which doesn't support VCPI or if you've disabled EMS. Remedy: Remove
  11.     the EMS driver, use an EMS driver which supports VCPI or enable EMS
  12.     if it has been disabled (for instance, remove the NOEMS keyword from
  13.     the command line of the EMS driver).
  14.  
  15. A2: (Kris Karas <ktk@enterprise.bih.harvard.edu>)
  16.     I bet your CONFIG.SYS looks like this:
  17.         DEVICE=HIMEM.SYS
  18.         DEVICE=EMM386.EXE NOEMS
  19.     It's the darned NOEMS keyword that's preventing EMM386 from giving
  20.     CLISP expanded memory emulation.  When I changed NOEMS to RAM (so that
  21.     I could still load programs into the High Memory Area) CLISP became
  22.     happy - somewhat.  CLISP was running very, very slowly.  I went to
  23.     compile CONFIG.LSP and it took nearly 15 minutes on a 486/33 with 20MB
  24.     of RAM memory!!!  Turns out the problem was that if CLISP finds any
  25.     expanded memory, it uses it; if not, is looks for extended memory.
  26.     When I removed the EMM386 driver from CONFIG.SYS altogether, CLISP
  27.     sped up by a factor of 20 or more!  You'll need to play around with
  28.     the memory management settings to see just which amounts of which type
  29.     of memory will make CLISP happiest on your machine.
  30.  
  31. Q3: CLISP runs, but incredibly slowly: it needs 90 seconds to start up.
  32.  
  33. A3: See answer A2 above.
  34.  
  35.